home *** CD-ROM | disk | FTP | other *** search
/ Clickx 47 / Clickx 47.iso / assets / software / sswitchxp152.exe / source / SpeedswitchXP / Toptions.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-06-14  |  1.5 KB  |  57 lines

  1. /*
  2.    SpeedswitchXP V1.5
  3.    - Windows XP CPU Frequency Control for Notebooks -
  4.  
  5.    Copyright(c) 2002-2005 Christian Diefer
  6.  
  7.    This program is free software; you can redistribute it and/or modify
  8.    it under the terms of the GNU General Public License version 2 as 
  9.    published by the Free Software Foundation.
  10.    
  11.    This program is distributed in the hope that it will be useful,
  12.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.    GNU General Public License for more details.
  15.    
  16.    You should have received a copy of the GNU General Public License
  17.    along with this program; if not, write to the Free Software
  18.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19. */
  20.  
  21. #ifndef TOPTIONS_H
  22. #define TOPTIONS_H
  23.  
  24. class TOptions {
  25. public:
  26.   TOptions();
  27.   bool setRegKeys();
  28.   bool getRegKeys();
  29.  
  30.   BOOL autoStart;
  31.   BOOL debugMode;
  32.   BOOL minimizeOnClose;
  33.   BOOL checkStatus;
  34.   int checkInterval;
  35.   BOOL reactivate;
  36.   int originalScheme;
  37.   BOOL readCPUSpeed;
  38.   int speedMethod;
  39.   BOOL readCPULoad;
  40.   BOOL showDiagram;
  41.   int cpuInterval;
  42.   int freqScaling;
  43.   int maxSpeed;
  44.   BOOL showBattery;
  45.   int batteryMethod;    // 0=DC only, 1=Show always
  46.   int batteryIndicator;
  47.   BOOL ac;              // not saved in registry
  48.   BOOL chargeIndicator;
  49.   BOOL speedIcon;
  50.   BOOL loadIcon;
  51.   int iconColor1;
  52.   int iconColor2;
  53.   BOOL iconTransparent;
  54. };
  55.  
  56. #endif
  57.